home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
TPUG - Toronto PET Users Group
/
TPUG Users Group CD
/
TPUG Users Group CD.iso
/
AMIGA
/
AMICUS
/
AMICUS09.ADF
/
MyCLI
/
makecli.cli
< prev
next >
Wrap
Text File
|
1986-05-22
|
481b
|
24 lines
;
;script file to build MYCLI under MANX C
;
; copy c.lib to ram: if not there
;
; compile with -s option to supress pointer warning messages
; -a option so we can assemble with other options
;
cc -aso ram:mycli.asm mycli
;
; assemble with -s option to make squeeze table bigger
; program will crash if this isn't done
;
as -s1900 -o mycli.o ram:mycli.asm
;
; kill ram: file
;
delete ram:mycli.asm
;
; link normally
;
ln -o mycli mycli.o -lc